summaryrefslogtreecommitdiffstats
path: root/src/org/uic/ticket/api/spec/IDocumentData.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/uic/ticket/api/spec/IDocumentData.java')
-rw-r--r--src/org/uic/ticket/api/spec/IDocumentData.java32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/org/uic/ticket/api/spec/IDocumentData.java b/src/org/uic/ticket/api/spec/IDocumentData.java
deleted file mode 100644
index 963d545..0000000
--- a/src/org/uic/ticket/api/spec/IDocumentData.java
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- *
- */
-package org.uic.ticket.api.spec;
-
-/**
- * The Interface IDocumentData.
- *
- * IDocumentData is the super class of transport documents and customer cards. It provides a token.
- *
- */
-public interface IDocumentData {
-
- /**
- * Gets the token.
- *
- * @return the token
- */
- public IToken getToken();
-
- /**
- * Sets the token.
- *
- * @param token the new token
- */
- public void setToken(IToken token);
-
-
-
-
-
-}